<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div id="animateMe">
Hello Bangladesh
</div>
<script src="https://cdn.jsdelivr.net/npm/animejs@3.1.0/lib/anime.min.js"></script>
<script>
import Letterize from "https://cdn.skypack.dev/letterizejs@2.0.0";
const test = new Letterize({
targets: "#animateMe"
});
var animation = anime.timeline({
targets: test.listAll,
delay: anime.stagger(50),
loop: true
});
animation
.add({
translateY: -40
})
.add({
translateY: 0
});
</script>